home *** CD-ROM | disk | FTP | other *** search
- /* A compound if statement. */
- using System;
-
- namespace Chapter2 {
- class Class1 {
- static void Main() {
- string input;
- float MyNumber;
-
- Console.WriteLine("How old are you? ");
- input = Console.ReadLine();
- MyNumber = float.Parse(input);
-
- if (MyNumber >= 18) { // compound statement
- Console.WriteLine("\n You're an adult");
- Console.WriteLine("You can vote\n");
- } else
- Console.WriteLine("\n Your turn will come");
- }
- }
- }
-
-